共计 538 个字符,预计需要花费 2 分钟才能阅读完成。
Linux Mint 终端输入命令 apt i
,按 Tab 键无法自动补全 install,这很不方便。
修改 bash
在终端输入命令 sudo vi /etc/bash.bashrc
,编辑 enable bash completion in interactive shells 这一项配置,将其注释全部去掉。
找到下面这几行:
#if ! shopt -oq posix; then
# if [-f /usr/share/bash-completion/bash_completion]; then
# . /usr/share/bash-completion/bash_completion
# elif [-f /etc/bash_completion]; then
# . /etc/bash_completion
# fi
#fi
去掉前面的 #号:
if ! shopt -oq posix; then
if [-f /usr/share/bash-completion/bash_completion]; then
. /usr/share/bash-completion/bash_completion
elif [-f /etc/bash_completion]; then
. /etc/bash_completion
fi
fi
重启
source /etc/bash_completion
正文完